runtime.special.offset (field)

13 uses

	runtime (current package)
		heapdump.go#L461: 				p := unsafe.Pointer(s.base() + uintptr(spf.special.offset))
		heapdump.go#L660: 			p := s.base() + uintptr(spp.special.offset)
		mgcmark.go#L388: 				p := s.base() + uintptr(spf.special.offset)/s.elemsize*s.elemsize
		mgcsweep.go#L518: 		objIndex := uintptr(siter.s.offset) / size
		mgcsweep.go#L526: 			for tmp := siter.s; tmp != nil && uintptr(tmp.offset) < endOffset; tmp = tmp.next {
		mgcsweep.go#L535: 			for siter.valid() && uintptr(siter.s.offset) < endOffset {
		mgcsweep.go#L539: 				p := s.base() + uintptr(special.offset)
		mheap.go#L1684: 	offset uint16   // span offset of object
		mheap.go#L1734: 		if offset == uintptr(x.offset) && kind == x.kind {
		mheap.go#L1739: 		if offset < uintptr(x.offset) || (offset == uintptr(x.offset) && kind < x.kind) {
		mheap.go#L1746: 	s.offset = uint16(offset)
		mheap.go#L1783: 		if offset == uintptr(s.offset) && kind == s.kind {